irrlib

irrlib Mercurial Source Tree


Root/Stable Version/1.2.4/IrrLibData.h

/*
    Irrlicht Library Wrapper
    Created by:
        Nathan Adams
        Denzel Morris
    Copyright (C) 2007
 
    This software is licensed under the GNU/GPL.
    This software may not be used for commerical purposes.
*/
 
/*
    Purpose of this class is to handle abstract data
    Such as:
    Stacks
    Queues
    Dynamic memory(arrays)
     
    Begininers probably wont use this class too much, its used mostly for the advanced - expert programmer.
    Howerver, IrrLib and other classes will make use of this class.
*/
 
 
/*class Stack {
        int cap;
        int count;
        request *the_stack;
    public:
        void InitStack(int stacksize);
        void Push(request value);
        request Top();
        request Pop();
        ~Stack ();
        int thecount();
    private:
        void Push(request *&the_stack, int& nCount, int& nCap, request& value);
 
        //void R
};
 
class Queue {
        int cap;
        int count;
        request *the_queue;
    public:
        void InitQueue(int queuesize);
        request Pop();
        request Front();
        request Back();
        ~Queue();
        int thecount();
        void Push(request value);
    private:
        void Push(request *the_stack, int nCount, int nCap, request value);
};*/
Source at commit tip created 11 years 4 months ago.
By Nathan Adams, Migrating from google code

Archive Download this file

Branches

Tags

Page rendered in 0.76219s using 11 queries.